func reflect.stringFor

32 uses

	reflect (current package)
		map_swiss.go#L41: 		panic("reflect.MapOf: invalid key type " + stringFor(ktyp))
		map_swiss.go#L51: 	s := "map[" + stringFor(ktyp) + "]" + stringFor(etyp)
		type.go#L742: 	panic("reflect: Elem of invalid type " + stringFor(t))
		type.go#L1718: 			if !(stringFor(rtypeOff(section, offs[h])) >= s) {
		type.go#L1731: 			if stringFor(typ) != s {
		type.go#L1789: 		s = "chan<- " + stringFor(typ)
		type.go#L1791: 		s = "<-chan " + stringFor(typ)
		type.go#L1793: 		typeStr := stringFor(typ)
		type.go#L1947: func stringFor(t *abi.Type) string {
		type.go#L1961: 			repr = append(repr, stringFor((*sliceType)(unsafe.Pointer(t)).Elem)...)
		type.go#L1963: 			repr = append(repr, stringFor(t)...)
		type.go#L1977: 		repr = append(repr, stringFor(t)...)
		type.go#L2006: 		panic("isReflexive called on non-key type " + stringFor(t))
		type.go#L2033: 		panic("needKeyUpdate called on non-key type " + stringFor(t))
		type.go#L2086: 	s := "[]" + stringFor(typ)
		type.go#L2248: 					panic("reflect.StructOf: illegal embedded field type " + stringFor(ft))
		type.go#L2344: 		repr = append(repr, (" " + stringFor(ft))...)
		type.go#L2589: 		panic("reflect.typeptrdata: unexpected type, " + stringFor(t))
		type.go#L2612: 	s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)
		type.go#L2763: 		panic("reflect: funcLayout of non-func type " + stringFor(&t.Type))
		type.go#L2766: 		panic("reflect: funcLayout with interface receiver " + stringFor(rcvr))
		type.go#L2793: 		s = "methodargs(" + stringFor(rcvr) + ")(" + stringFor(&t.Type) + ")"
		type.go#L2795: 		s = "funcargs(" + stringFor(&t.Type) + ")"
		value.go#L437: 			panic("reflect: " + op + " using " + xt.String() + " as type " + stringFor(targ))
		value.go#L484: 		println("reflect.call", stringFor(&t.Type))
		value.go#L631: 					print("kind=", steps[0].kind, ", type=", stringFor(tv), "\n")
		value.go#L757: 					print("kind=", steps[0].kind, ", type=", stringFor(typ), "\n")
		value.go#L3146: 	panic(context + ": value of type " + stringFor(v.typ()) + " is not assignable to type " + stringFor(dst))
		value.go#L3158: 		panic("reflect.Value.Convert: value of type " + stringFor(v.typ()) + " cannot be converted to type " + t.String())